home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 33 / Amiga Format AFCD33 (Issue 117, Dec 1998).iso / -seriously_amiga- / graphics / infompeg / makefile < prev    next >
Makefile  |  1998-09-07  |  171b  |  14 lines

  1. # If the program does not compile with gcc, try cc.
  2. # CC = cc
  3. CC = gcc
  4.  
  5. CFLAGS = -O
  6.  
  7. .c.o:
  8.     $(CC) $(CFLAGS) -c $<
  9.  
  10. O = infompeg.o
  11.  
  12. infoMPEG : $(O)
  13.     $(CC) -o infoMPEG $(O)
  14.